home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20031118-20041115 / 000392_fdc@columbia.edu_Mon Sep 20 16:33:11 2004.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: surgeftp server, bizarre prepending of filename with mget *
  5. Date: 20 Sep 2004 20:33:03 GMT
  6. Organization: Columbia University
  7. Lines: 54
  8. Message-ID: <slrnckufjv.s0f.fdc@sesame.cc.columbia.edu>
  9. References: <jTG3d.31142$ci3.967656@twister.southeast.rr.com>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1095712383 1573 128.59.59.56 (20 Sep 2004 20:33:03 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 20 Sep 2004 20:33:03 GMT
  15. User-Agent: slrn/0.9.8.0 (SunOS)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15169
  17.  
  18. On 2004-09-20, x@y.org <flyingboz@hotmail.com> wrote:
  19. : trying to script a setup that will allow me to grab files from a surgeftp
  20. : server,
  21. :
  22. :  Version SurgeFTP 2.2k6 Jul  7 2004
  23. :
  24. : i can get a rdir listing of filenames:
  25. :
  26. : -rwxrwxrwx   1 owner    group            3585 Sep 17 18:30
  27. : 445284152.G6116RWE.27S
  28. : -rwxrwxrwx   1 owner    group             255 Sep 17 16:28
  29. : 445284152.G6116RWE.997
  30. : -rwxrwxrwx   1 owner    group           16071 Sep 17 16:28
  31. : 445284152.G6116RWE.ACC
  32. : -rwxrwxrwx   1 owner    group               0 Sep 17 16:27
  33. : 45284152.G6116RWE.ANSI203040917-17115188.dat.BID
  34. : -rwxrwxrwx   1 owner    group            7238 Sep 17 16:28
  35. : 445284152.G6116RWE.EXT
  36. : -rwxrwxrwx   1 owner    group             186 Sep 17 16:28
  37. : 445284152.G6116RWE.REJ
  38. :
  39. : then I try to do execute
  40. :
  41. :     ftp mget * t
  42. :
  43. : I get the following msg back for each file :
  44. :
  45. : [type=file;size=7238;modify=20040917212843;create=20040917212842;perm=radfw
  46. : 445284152.G6116RWE.EXT]
  47. :  GET radfw 445284152.G6116RWE.EXT (binary) (7238 bytes)---> PORT
  48. : 169,254,68,181,6,64
  49. : 200 PORT command successful.
  50. : ---> RETR radfw 445284152.G6116RWE.EXT
  51. : 550 radfw 445284152.G6116RWE.EXT: Cannot open file No such file or directory
  52. :: MESSAGE: radfw 445284152.G6116RWE.EXT: Cannot open file No such file or
  53. : directory
  54. :
  55. : What on earth is this radfw that is prepending itself to my filename, hence
  56. : (I believe) causing the RETR to fail?
  57. :
  58. It appears the server supports MLSD:
  59.  
  60.   http://www.columbia.edu/kermit/newftp.html
  61.  
  62. The "radfw" bit is the file permissions reported by the server.  Why is it
  63. being prepended to the filename?  Beats me.  Exactly which version of Kermit
  64. are you using?  I'd suggest you tell it to:
  65.  
  66.   set ftp debug on
  67.  
  68. repeat the download attempt, and then send the resulting transcript to
  69. kermit-support@columbia.edu .
  70.  
  71. - Frank